home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000470_news@columbia.edu _Tue Aug 22 12:37:09 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA14051
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 22 Aug 2000 12:37:09 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA18904
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 22 Aug 2000 12:37:08 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA05901
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 22 Aug 2000 12:19:56 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jaltman@columbia.edu (Jeffrey Altman)
  13. Subject: Re: k95crypt.dll
  14. Date: 22 Aug 2000 16:19:54 GMT
  15. Organization: Columbia University
  16. Message-ID: <8nu97a$5oa$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <g965qssk1of4sd5q00ju9d1l6nhg7210vo@4ax.com>,
  20. Michael Sundermann  <michael.sundermann@acm.org> wrote:
  21. : Hi,
  22. : I didn't find k95crypt.dll on the Kermit WebSite.
  23. : Because the export restrictions are dropped,
  24. : where can I download the above file.
  25. : Thanks
  26. : Michael Sundermann
  27. : Germany
  28.  
  29. Export restrictions in the U.S. have not been dropped.
  30. They have been relaxed for source code only releases but all
  31. binaries are still restricted.  When we are able to export
  32. the encryption features of K95 it will be announced on this
  33. web site.
  34.  
  35.  
  36.                   Jeffrey Altman * Sr.Software Designer
  37.                  The Kermit Project * Columbia University
  38.                612 West 115th St * New York, NY * 10025 * USA
  39.      http://www.kermit-project.org/ * kermit-support@kermit-project.org
  40.   
  41. and then type commands manually.
  42.  
  43. : Reading the manual I notice a new command "http" in version 1.1.20:
  44. :    set host  192.168.1.2:80
  45. :    http GET / 
  46. : This works.
  47. : But this does not work:
  48. :    set host  192.168.1.2:80
  49. :    http GET /  HTTP/1.0
  50. : Probably because I don't know how to simulate 
  51. : the second RETURN (or an empty line).
  52.  
  53.  
  54. The HTTP GET command has the format:
  55.  
  56.   HTTP [ <switches> ] GET <remote-filename> [ <local-filename> ]
  57.     Retrieves the named file.  If a <local-filename> is given, the file is
  58.     stored locally under that name; otherwise it is stored with its own name.
  59.  
  60. When you use it you do not simulate the second RETURN.  The HTTP protocol
  61. is implemented in Kermit.  You just specify the file names.
  62.  
  63.   HTTP GET /
  64.  
  65. without a <local-filename> will dump the contents of the default HTML 
  66. file from the web site to the display.  If you supply a local-filename
  67. the contents of the HTML file will be stored in the local file.
  68.  
  69. If you need access to the returned headers use the /array switch
  70.  
  71.   HTTP /ARRAY:C GET /
  72.   SHOW ARRAY C
  73.  
  74.   1. Date: Tue, 22 Aug 2000 16:29:33 GMT
  75.  
  76.   2. Server: Apache/1.3.4 (Unix)
  77.  
  78.   3. Last-Modified: Mon, 14 Aug 2000 22:01:51 GMT
  79.  
  80.   4. ETag: "1057c-3aac-39986c4f"
  81.  
  82.   5. Accept-Ranges: bytes
  83.  
  84.   6. Content-Length: 15020
  85.  
  86.   7. Connection: close
  87.  
  88.   8. Content-Type: text/html
  89.  
  90.                   Jeffrey Altman * Sr.Software Designer
  91.                  The Kermit Project * Columbia University
  92.                612 West 115th St * New York, NY * 10025 * USA
  93.      http://www.kermit-project.org/ * kermit-support@kermit-project.org
  94.